-
Notifications
You must be signed in to change notification settings - Fork 144
Zoo features, agent team #1305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zoo features, agent team #1305
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, left a question but otherwise LGTM:)
* @param progressFormat: Format to use for progress output (possible values: pretty, json, none), default is "none" | ||
* @return std::string: Path to the model in cache | ||
*/ | ||
std::string getModelFromZoo(const NNModelDescription& modelDescription, | ||
bool useCached = true, | ||
const std::string& cacheDirectory = "", | ||
const std::string& apiKey = ""); | ||
const std::string& apiKey = "", | ||
const std::string& progressFormat = "none"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any specific reason to not go with an enum here instead of a string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True, will make it an enum. This was the quickest but at the same time dirtiest implementation :D
Purpose
Add
zoo_helper
-related features requested by the agent team.This PR should only be merged after #1304